home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 40
/
Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso
/
Aminet
/
misc
/
emu
/
ATUtilities.lha
/
ATUtilities
/
BASIC
/
ASC.BAS
< prev
next >
Wrap
BASIC Source File
|
2000-09-26
|
324b
|
26 lines
$INCLUDE "REGNAMES.INC"
cls
screen 12
color 15
ze=2
for i=14 to 33
locate ze
call ChOut(i)
ze=ze+1
next
end
sub ChOut(n) shared
x$=str$(n)+" "+chr$(n)
for zz=1 to len(x$)
reg %ax,&H09*256+asc(mid$(x$,zz,1))
reg %bx,15
reg %cx,1
call interrupt &H10
locate ,zz+1
next
end sub